SQL Table Value Constructor – SELECT Statement (Create a Table With Value Generated By My Self)


/** Create a Table With Value Generated By My Self **/
SELECT * FROM 
(VALUES 
    /** First Value, Second Value In A Row**/
    ('David', 25),
    ('Brown', 26),
    ('Alex', 22)

) /** First Column Name, Second Column Name**/
as E(FirstName, Age);
#SQL #Table Value Constructor #SELECT Statement






你可能感興趣的文章

[ js 筆記 ] JS 中的 for ... in 和 for ... of

[ js 筆記 ] JS 中的 for ... in 和 for ... of

Kotlin 學習社群 - Kotlin Tips

Kotlin 學習社群 - Kotlin Tips

用 React + Redux 做一個 todo list 吧

用 React + Redux 做一個 todo list 吧






留言討論